home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
WIN_PRO
/
LB09D.ZIP;1
/
STRTEST.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1992-03-15
|
203 b
|
13 lines
' Test the left$() and right$() functions
test$ = "Here is my test string."
for i = -5 to len(test$)
print left$(test$, i)
print right$(test$, i)
next i